Delay Property (MultiSelectListBox<T>)
In This Topic
Gets or sets the delay, in milliseconds, between when a keystroke occurs and when the search is performed to update the filter.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(500)>
Public Property Delay As System.Integer
'Usage
Dim instance As MultiSelectListBox(Of T)
Dim value As System.Integer
instance.Delay = value
value = instance.Delay
[System.ComponentModel.DefaultValue(500)]
public System.int Delay {get; set;}
public read-write property Delay: System.Integer;
System.ComponentModel.DefaultValueAttribute(500)
public function get,set Delay : System.int
[System.ComponentModel.DefaultValue(500)]
public: __property System.int get_Delay();
public: __property void set_Delay(
System.int value
);
[System.ComponentModel.DefaultValue(500)]
public:
property System.int Delay {
System.int get();
void set ( System.int value);
}
See Also